home *** CD-ROM | disk | FTP | other *** search
/ Family Forum 261 / SOMC Family Forum 261.iso / Xtras / Animation Wizard.dir / 00006_Script_TextField < prev    next >
Text File  |  1997-05-10  |  302b  |  18 lines

  1. -- TextField script
  2.  
  3. property iFieldName
  4.  
  5. on birth me, theFieldName, theInitialText
  6.   set iFieldName = theFieldName
  7.   set the text of field iFieldname = theInitialText
  8.   return me
  9. end birth
  10.  
  11. -- Needed to support general validation scheme
  12. on mValidate me
  13.   return TRUE
  14. end mValidate
  15.  
  16.  
  17.  
  18.